home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SMK-DISC.ZIP / SMK-DISC.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1996-04-26  |  1.4 KB  |  108 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.2O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     Byte     BYTE001
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     DispFile PPEPath() + "smk-disc.pcb", 1
  25.     DispStr "@WAIT@"
  26.     :LABEL001
  27.     AnsiPos 2, 23
  28.     Print "@X0Bd@X03o @X0By@X03ou @X0Ba@X03gree @X0Bt@X03o @X0Bt@X03he @X0Ba@X03bove @X0Bs@X03tatement?   @X4F YES @X08   NO "
  29.     :LABEL002
  30.     BYTE001 = 1
  31.     STRING001 = ""
  32.     While (STRING001 == "") Do
  33.         STRING001 = Inkey()
  34.     EndWhile
  35.     If (STRING001 == "6") Goto LABEL003
  36.     If (STRING001 == "RIGHT") Goto LABEL003
  37.     If (STRING001 == Chr(13)) Goto LABEL005
  38.     Goto LABEL002
  39.     :LABEL003
  40.     AnsiPos 2, 23
  41.     Print "@X0Bd@X03o @X0By@X03ou @X0Ba@X03gree @X0Bt@X03o @X0Bt@X03he @X0Ba@X03bove @X0Bs@X03tatement?    @X08YES   @X4F NO "
  42.     :LABEL004
  43.     BYTE001 = 1
  44.     STRING001 = ""
  45.     While (STRING001 == "") Do
  46.         STRING001 = Inkey()
  47.     EndWhile
  48.     If (STRING001 == "4") Goto LABEL001
  49.     If (STRING001 == "LEFT") Goto LABEL001
  50.     If (STRING001 == Chr(13)) Goto LABEL006
  51.     Goto LABEL004
  52.     :LABEL005
  53.     DispStr "@CLS@"
  54.     DispFile PPEPath() + "smk-hang.pcb", 1
  55.     DispStr "@WAIT@"
  56.     Hangup
  57.     End
  58.     :LABEL006
  59.     End
  60.  
  61. ;------------------------------------------------------------------------------
  62. ;
  63. ; Usage report (before postprocessing)
  64. ;
  65. ; ■ Statements used :
  66. ;
  67. ;    2       End
  68. ;    12      Goto 
  69. ;    6       Let 
  70. ;    2       Print 
  71. ;    8       If 
  72. ;    2       DispFile 
  73. ;    1       Hangup
  74. ;    3       DispStr 
  75. ;    2       AnsiPos 
  76. ;
  77. ;
  78. ; ■ Functions used :
  79. ;
  80. ;    2       +
  81. ;    8       ==
  82. ;    2       !
  83. ;    2       Chr()
  84. ;    2       Inkey()
  85. ;    2       PPEPath()
  86. ;
  87. ;------------------------------------------------------------------------------
  88. ;
  89. ; Analysis flags : B
  90. ;
  91. ; B - Brute hangup ■ 1
  92. ;     Program hangup without notification. This may be a good way to
  93. ;     disconnect a user, but if used randomly, may be very nasty
  94. ;     ■ Search for : HANGUP, DTROFF
  95. ;
  96. ;------------------------------------------------------------------------------
  97. ;
  98. ; Postprocessing report
  99. ;
  100. ;    0       For/Next
  101. ;    2       While/EndWhile
  102. ;    0       If/Then or If/Then/Else
  103. ;    0       Select Case
  104. ;
  105. ;------------------------------------------------------------------------------
  106. ;                 AEGiS Corp - Break the routines, code against the machines!
  107. ;------------------------------------------------------------------------------
  108.